@SystemMessage #VANC #VANP Checking if the month has changed..
@Month(1) @NullResponse @If[CurrentMonth]=[1]Then(NoChange) @Goto(MonthChange)
@Month(2) @NullResponse @If[CurrentMonth]=[2]Then(NoChange) @Goto(MonthChange)
@Month(3) @NullResponse @If[CurrentMonth]=[3]Then(NoChange) @Goto(MonthChange)
@Month(4) @NullResponse @If[CurrentMonth]=[4]Then(NoChange) @Goto(MonthChange)
@Month(5) @NullResponse @If[CurrentMonth]=[5]Then(NoChange) @Goto(MonthChange)
@Month(6) @NullResponse @If[CurrentMonth]=[6]Then(NoChange) @Goto(MonthChange)
@Month(7) @NullResponse @If[CurrentMonth]=[7]Then(NoChange) @Goto(MonthChange)
@Month(8) @NullResponse @If[CurrentMonth]=[8]Then(NoChange) @Goto(MonthChange)
@Month(9) @NullResponse @If[CurrentMonth]=[9]Then(NoChange) @Goto(MonthChange)
@Month(10) @NullResponse @If[CurrentMonth]=[10]Then(NoChange) @Goto(MonthChange)
@Month(11) @NullResponse @If[CurrentMonth]=[11]Then(NoChange) @Goto(MonthChange)
@Month(12) @NullResponse @If[CurrentMonth]=[12]Then(NoChange) @Goto(MonthChange)
(NoChange)
@Month(1) @SystemMessage #VANC #VANP We're still in January.. 
@Month(2) @SystemMessage #VANC #VANP We're still in February.. 
@Month(3) @SystemMessage #VANC #VANP We're still in March.. 
@Month(4) @SystemMessage #VANC #VANP We're still in April.. 
@Month(5) @SystemMessage #VANC #VANP We're still in May.. 
@Month(6) @SystemMessage #VANC #VANP We're still in June.. 
@Month(7) @SystemMessage #VANC #VANP We're still in July.. 
@Month(8) @SystemMessage #VANC #VANP We're still in August.. 
@Month(9) @SystemMessage #VANC #VANP We're still in September.. 
@Month(10) @SystemMessage #VANC #VANP We're still in October.. 
@Month(11) @SystemMessage #VANC #VANP We're still in November.. 
@Month(12) @SystemMessage #VANC #VANP We're still in December.. 
@SystemMessage #VANC #VANP Wait until the month changes...
@End
(MonthChange)
@Month(1) @SystemMessage #VANC #VANP Well it seems we're in January @SetVar[CurrentMonth]=[1]
@Month(2) @SystemMessage #VANC #VANP Well it seems we're in February.. @SetVar[CurrentMonth]=[2]
@Month(3) @SystemMessage #VANC #VANP Well it seems we're in March.. @SetVar[CurrentMonth]=[3]
@Month(4) @SystemMessage #VANC #VANP Well it seems we're in April.. @SetVar[CurrentMonth]=[4]
@Month(5) @SystemMessage #VANC #VANP Well it seems we're in May.. @SetVar[CurrentMonth]=[5]
@Month(6) @SystemMessage #VANC #VANP Well it seems we're in June.. @SetVar[CurrentMonth]=[6]
@Month(7) @SystemMessage #VANC #VANP Well it seems we're in July.. @SetVar[CurrentMonth]=[7]
@Month(8) @SystemMessage #VANC #VANP Well it seems we're in August.. @SetVar[CurrentMonth]=[8]
@Month(9) @SystemMessage #VANC #VANP Well it seems we're in September.. @SetVar[CurrentMonth]=[9]
@Month(10) @SystemMessage #VANC #VANP Well it seems we're in October.. @SetVar[CurrentMonth]=[10]
@Month(11) @SystemMessage #VANC #VANP Well it seems we're in November.. @SetVar[CurrentMonth]=[11]
@Month(12) @SystemMessage #VANC #VANP Well it seems we're in December.. @SetVar[CurrentMonth]=[12]
@SystemMessage #VANC #VANP Lets see what your allowance should be this month.. @SetVar[TotalAllowance]=[0] @RapidCodeOn
@NullResponse @SetVar[AddAllowanceGood]=[0]
@NullResponse @ChangeVar[AddAllowanceGood]=[AddAllowanceGood]+[AllowanceGood]
@NullResponse @ChangeVar[AddAllowanceGood]=[AddAllowanceGood]*[GoodDays]
@NullResponse @SetVar[AddAllowanceBad]=[0]
@NullResponse @ChangeVar[AddAllowanceBad]=[AddAllowanceBad]+[AllowanceBad]
@NullResponse @ChangeVar[AddAllowanceBad]=[AddAllowanceBad]*[BadDays]
@NullResponse @ChangeVar[TotalAllowance]=[TotalAllowance]+[AddAllowanceBad]
@NullResponse @ChangeVar[TotalAllowance]=[TotalAllowance]+[AddAllowanceGood]
@Month(1) @SystemMessage #VANC #VANP So for January your allowance will be @ShowVar[TotalAllowance]
@Month(2) @SystemMessage #VANC #VANP So for February your allowance will be @ShowVar[TotalAllowance]
@Month(3) @SystemMessage #VANC #VANP So for March your allowance will be @ShowVar[TotalAllowance]
@Month(4) @SystemMessage #VANC #VANP So for April your allowance will be @ShowVar[TotalAllowance]
@Month(5) @SystemMessage #VANC #VANP So for May your allowance will be @ShowVar[TotalAllowance]
@Month(6) @SystemMessage #VANC #VANP So for June your allowance will be @ShowVar[TotalAllowance]
@Month(7) @SystemMessage #VANC #VANP So for July your allowance will be @ShowVar[TotalAllowance]
@Month(8) @SystemMessage #VANC #VANP So for August your allowance will be @ShowVar[TotalAllowance]
@Month(9) @SystemMessage #VANC #VANP So for September your allowance will be @ShowVar[TotalAllowance]
@Month(10) @SystemMessage #VANC #VANP So for October your allowance will be @ShowVar[TotalAllowance]
@Month(11) @SystemMessage #VANC #VANP So for November your allowance will be @ShowVar[TotalAllowance]
@Month(12) @SystemMessage #VANC #VANP So for December your allowance will be @ShowVar[TotalAllowance]
@SystemMessage #VANC #VANP Write it down in your budget..
@End